@media screen and (min-width: 768px) {
.top1 { 
display: block;
position: absolute; 
top: 15px;
left: 35px;
width: 200px;
}
}
@media screen and (min-width: 481px) and (max-width: 767px) {
.top1 { 
display: block;
position: absolute; 
top: 15px;
left: 35px;
width: 200px;
}

}
@media screen and (min-width: 481px) and (max-width: 767px) and (orientation: landscape) {
.top1 { 
display: block;
position: absolute; 
top: 15px;
left: 35px;
width: 200px;
}
}
@media screen and (min-width: 320px) and (max-width: 480px) {
.top1 { 
display: block;
position: absolute; 
top: 15px;
left: 35px;
width: 200px;
}
}
@media screen and (min-width: 320px) and (max-width: 480px) and (orientation: landscape) {
.top1 { 
display: block;
position: absolute; 
top: 15px;
left: 35px;
width: 200px;
}
}